home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / comms / internet / html-related / hsc / source / hsclib / defattr.h < prev    next >
C/C++ Source or Header  |  1996-02-19  |  668b  |  28 lines

  1. /*
  2. ** defattr.h
  3. **
  4. ** functions to define new attribute
  5. ** and manipulate attribute lists
  6. **
  7. */
  8.  
  9. #ifndef HSCLIB_DEFATTR_H
  10. #define HSCLIB_DEFATTR_H
  11.  
  12. /*
  13. ** global funcs
  14. */
  15. #ifndef NOEXTERN_HSCLIB_DEFATTR
  16.  
  17. /* attribute list manipulation */
  18. extern BOOL copy_local_varlist( DLLIST *destlist, DLLIST *varlist, ULONG mci );
  19. extern BOOL set_local_varlist( DLLIST *destlist, DLLIST *varlist, ULONG mci );
  20. extern VOID remove_local_varlist( DLLIST *varlist, ULONG mci );
  21. extern BOOL check_varlist( HSCPRC *hp, DLLIST *varlist );
  22.  
  23. extern HSCVAR *define_var( HSCPRC *hp, DLLIST *varlist, ULONG unmasked_flags );
  24.  
  25. #endif /* NOEXTERN_HSCLIB_DEFATTR */
  26. #endif /* HSCLIB_DEFATTR_H */
  27.  
  28.